home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_d / sndkey11.zip / SEND.DPR < prev    next >
Text File  |  1996-04-01  |  260b  |  14 lines

  1. program Send;
  2.  
  3. uses
  4.   Forms,
  5.   Smain in 'SMAIN.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Title := 'Test program for SendKeys DLL. Copyright ⌐ 1996 J M Technical Services, UK.';
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.